summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/card_game.xml
blob: 4b7d2b3cc3a54c05a2e828d8e663e9435bab41bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:foreground="?attr/selectableItemBackground"
    android:clickable="true"
    android:clipToPadding="false"
    android:focusable="true"
    android:paddingStart="4dp"
    android:paddingTop="8dp"
    android:paddingEnd="4dp"
    android:paddingBottom="8dp"
    android:transitionName="card_game">

    <com.google.android.material.card.MaterialCardView
        style="?attr/materialCardViewElevatedStyle"
        android:id="@+id/card_game_art"
        android:layout_width="140dp"
        android:layout_height="140dp"
        app:cardCornerRadius="4dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <ImageView
            android:id="@+id/image_game_screen"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    </com.google.android.material.card.MaterialCardView>

    <com.google.android.material.textview.MaterialTextView
        style="@style/TextAppearance.Material3.BodyLarge"
        android:id="@+id/text_game_title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:maxLines="2"
        android:paddingTop="8dp"
        android:textAlignment="viewStart"
        app:layout_constraintEnd_toEndOf="@+id/card_game_art"
        app:layout_constraintStart_toStartOf="@+id/card_game_art"
        app:layout_constraintTop_toBottomOf="@+id/card_game_art"
        tools:text="Super Mario Odyssey" />

    <com.google.android.material.textview.MaterialTextView
        style="@style/TextAppearance.Material3.BodyMedium"
        android:id="@+id/text_game_caption"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:lines="1"
        android:maxLines="1"
        android:paddingTop="8dp"
        android:textAlignment="viewStart"
        app:layout_constraintEnd_toEndOf="@+id/card_game_art"
        app:layout_constraintStart_toStartOf="@+id/card_game_art"
        app:layout_constraintTop_toBottomOf="@+id/text_game_title"
        tools:text="Nintendo" />

</androidx.constraintlayout.widget.ConstraintLayout>